Portfolio
Phase 1: Core Information Storage

DNA

The Ultimate Archival Database of Life

Scroll to Explore

Why This Matters

In bioinformatics, we treat DNA as the ultimate long-term archival database of life. Every instruction needed to build, maintain, and reproduce an organism is encoded inside DNA.

Unlike RNA (temporary working copies) or proteins (functional machines), DNA is designed for long-term storage.

  • 🗄️ Store information stably
  • 🛡️ Protect it from damage
  • 🖨️ Copy with extremely high accuracy
  • đź”§ Repair mistakes whenever possible

What is DNA?

DNA (Deoxyribonucleic Acid) is a massive, highly stable polymer composed of repeating molecular units called nucleotides. Unlike RNA, which acts as a temporary working copy, or proteins, which function as cellular machines, DNA is chemically optimized for long-term data storage.

Every instruction needed to build, maintain, and reproduce an organism is encoded inside this structure.

DNA to Chromosome
Figure 1: Hierarchical packaging of DNA, from double helix to a condensed chromosome.
Think of it like a book:

Letters → Bases
Words → Codons
Sentences → Genes
Chapters → Chromosomes
Entire Book → Genome

DNA is Made of Repeating Nucleotides

Every nucleotide has three components. The sequence of these letters stores genetic information, functioning much like binary code in a computer.

Nucleotide Structure
Figure 2: The molecular structure of a nucleotide, detailing the phosphate, sugar, and nitrogenous base.

1. Phosphate Group

Think of it as the links in a chain.

  • Contains phosphorus & oxygen
  • Negatively charged
  • Connects neighboring nucleotides
  • Part of the DNA backbone

2. Deoxyribose Sugar

A five-carbon sugar that gives DNA its direction.

  • Holds the base & phosphate
  • Lacks one oxygen compared with ribose (the sugar in RNA)

3. Nitrogenous Base

This is where the biological information is actually stored.

  • Adenine (A) - Purine
  • Thymine (T) - Pyrimidine
  • Guanine (G) - Purine
  • Cytosine (C) - Pyrimidine

Purines vs Pyrimidines

Purines (larger)

A (Adenine) & G (Guanine)

Structure: Complex double-ring molecules consisting of a six-membered pyrimidine ring fused to a five-membered imidazole ring. They are larger and bulkier.

Purine Structure

Pyrimidines (smaller)

C (Cytosine) & T (Thymine)

Structure: Simpler single-ring molecules (a six-membered aromatic ring).
Note: In RNA, Thymine is replaced by Uracil (U), which lacks one methyl group.

Pyrimidine Structure
Pyrimidine Core
Uracil Structure
RNA: Uracil (U)

A large base (Purine) always pairs with a small base (Pyrimidine). This strictly maintains a uniform 2 nm diameter across the entire DNA double helix.

The DNA Backbone

The backbone consists of alternating Sugar and Phosphate molecules.

Nucleotides are connected by phosphodiester bonds, creating a strong covalent framework that gives DNA its chemical stability.

DNA Backbone
Figure 3: The sugar-phosphate backbone and phosphodiester bonds forming the DNA framework.

DNA Bases Pair Specifically

  • Adenine pairs only with Thymine.
  • Guanine pairs only with Cytosine.

This complementary pairing allows each strand to serve as a template for copying.

AT Base Pair GC Base Pair
Figure 4: Complementary base pairing showing the 2 hydrogen bonds of A-T (left) and 3 bonds of G-C (right).

Hydrogen Bonds

A = T (2 Hydrogen Bonds)

G ≡ C (3 Hydrogen Bonds)

GC-rich DNA requires more energy to separate due to the extra bond.

Antiparallel Strands & Direction

One strand runs 5' → 3' and the other 3' → 5'.

DNA polymerases synthesize DNA only in the 5' → 3' direction. This directionality determines replication, transcription, and primer placement.

Chromosomes & Packaging

DNA is extremely long. If stretched out, the DNA from a single human cell would measure roughly 2 meters, yet it fits perfectly into a microscopic nucleus only a few micrometers wide. This requires highly organized, hierarchical packaging.

The double helix wraps around octamers of proteins called core histones (H2A, H2B, H3, H4) to form nucleosomes ("beads on a string"). Crucially, a special linker protein called Histone H1 acts as a "clip" that binds to the DNA as it enters and exits the nucleosome, locking the structure together and allowing it to further compact into a dense 30 nm fiber.

Nucleosome Organization
Figure 5: DNA wrapped around the histone core. Histone H1 (linker) binds the structure to lock the DNA in place.

Major and Minor Grooves

As DNA twists, it creates two alternating grooves.

Major Groove
Minor Groove
Animated DNA Grooves
Figure 6: A 3D orbital view of the double helix highlighting the distinct major and minor grooves.

Many proteins—including transcription factors—bind DNA by reading patterns exposed in the major (wider) groove.

Connection to Bioinformatics

The physical and chemical structures you explored above form the foundational rules for all computational biology algorithms. Here is a summary of how the structural biology of DNA directly translates into bioinformatics:

DNA Property Bioinformatics Application
Base SequenceGenome Assembly
ComplementarityRead Mapping
5' → 3' DirectionAlignment Algorithms
MutationsVariant Calling
ConservationEvolutionary Analysis
Grooves & PackagingEpigenomics / Motif Discovery

Base Sequence → Genome Assembly

Because DNA is a linear sequence of nucleotides, bioinformatics treats the genome as a massive text string. Genome Assembly algorithms (like De Bruijn graphs) stitch millions of short string fragments back together based on overlapping sequences.

Complementarity → Read Mapping

The strict rule that Purines pair with Pyrimidines (A=T, G≡C) guarantees that one strand perfectly dictates the other. Read Mapping algorithms (like BWA) exploit this complementarity to map short sequencer reads to a reference genome. If a sequencer reads "ATGC", the algorithm computationally searches the genome for the complementary "TACG" binding site.

5' → 3' Direction → Alignment Algorithms

Because the two strands run in opposite directions, computational biologists must always account for both directions. When designing PCR Primers or using Alignment Algorithms, tools automatically generate the "reverse complement" of a sequence to ensure the computational model aligns with the physical reality of the antiparallel double helix.

Mutations → Variant Calling

By comparing a patient's DNA string to a reference string, bioinformaticians perform Variant Calling to find mutations (SNPs or structural changes) responsible for genetic diseases or cancer.

Conservation → Evolutionary Analysis

Because critical genes (like those coding for ribosomes) are highly conserved across species, bioinformatics applications can compare DNA sequences across different organisms. This allows us to construct phylogenetic trees and trace evolutionary history over millions of years.

Grooves & Packaging → Epigenomics / Motif Discovery

Since proteins "read" the chemical signatures exposed in the grooves, tools scan DNA for Motifs to predict transcription factor binding. Furthermore, because DNA wraps tightly around Histone H1, Epigenomic pipelines (like ATAC-Seq) map exactly which parts of the genome are physically unwound and accessible, and which are locked away on histones.

Interactive DNA Helix
Next Topic →